bfa94580914968d440a784c8a9b896259d7ccc40,portlets/lecture2go-portlet/docroot/WEB-INF/src/de/uhh/l2g/plugins/service/impl/InstitutionLocalServiceImpl.java,InstitutionLocalServiceImpl,getRootInstitutionsByOpenAccessVideos,#,83
Before Change
public List<Institution> getRootInstitutionsByOpenAccessVideos() throws SystemException {
List<Institution> ret = InstitutionFinderUtil.findRootInstitutionsByOpenAccessVideos();
return ret;
}
public Institution getByGroupIdAndId(long groupId, long institutionId) throws SystemException {
After Change
public List<Institution> getRootInstitutionsByOpenAccessVideos() throws SystemException {
return InstitutionFinderUtil.findRootInstitutionsByOpenAccessVideos();
}
public Institution getByGroupIdAndId(long groupId, long institutionId) throws SystemException {